home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form TaskKiller
- Caption = "TaskKiller"
- ClientHeight = 705
- ClientLeft = 3510
- ClientTop = 3765
- ClientWidth = 3780
- LinkTopic = "Form1"
- ScaleHeight = 705
- ScaleWidth = 3780
- Begin VB.CommandButton CmdEndTask
- Caption = "End Task"
- Height = 495
- Left = 2400
- TabIndex = 2
- Top = 120
- Width = 1215
- End
- Begin VB.TextBox TaskText
- Height = 285
- Left = 720
- TabIndex = 1
- Text = "Internet Explorer"
- Top = 240
- Width = 1575
- End
- Begin VB.Label Label1
- Caption = "Task"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 495
- End
- Attribute VB_Name = "TaskKiller"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub CmdEndTask_Click()
- TerminateTask TaskText.Text
- End Sub
-